home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Electronic Messages / USEnet Digests / USEnet Vol. 4 / USEnet 4.68 < prev    next >
Encoding:
Text File  |  1988-06-18  |  38.8 KB  |  1,032 lines  |  [TEXT/ttxt]

  1.  
  2. List (Unformatted): USENET MAC DIGEST V4 #68
  3.  
  4.  
  5. Usenet Mac Digest     Friday, May 27, 1988           Volume 4 : Issue 68
  6.  
  7. Today's Topics:
  8.      FullWrite Bug and Patch
  9.      Re: Initialization Page
  10.      Hooking up an HP 7585B plotter to a Mac
  11.      Re: Mac on airplanes
  12.      SE to Mac II floppy - More info
  13.      Re: Brief overview of FullWrite (Re
  14.      Re: Statistical Packages
  15.      tax on mac
  16.      How can you extend and add on to AppleTalk networks?
  17.      TOPS on a Sun
  18.      Apple II Emulation on Mac II
  19.      Are there any color printer drivers?
  20.      Re: Statistical Packages
  21.      Re: tax on mac
  22.      Re: Math Word Processing
  23.      Re: REsolved: "There is nothing to choose" trouble
  24.      Re: How can you extend and add on to AppleTalk networks?
  25.      Re: REsolved: "There is nothing to choose" trouble
  26.      Re: New LAYO
  27.      Speed of Redraw in Drawing programs
  28.      SuperMac XP150 drive ??
  29.      Re: New LAYO
  30.      Re: Mac on airplanes
  31.      Getting means and standard deviations out of CricketGraph
  32.      Re: SuperMac XP150 drive ??
  33.      Re: How can you extend and add on to AppleTalk networks?
  34.      Re: Anyone using pcl (clos) under Allegro Common Lisp?
  35.      MPW has trouble with L O N G lines
  36.      LightspeedC license
  37.  
  38. ----------------------------------------------------------------------
  39.  
  40. From: edmoy@violet.berkeley.edu
  41. Subject: FullWrite Bug and Patch
  42. Date: 20 May 88 00:20:42 GMT
  43. Organization: University of California, Berkeley
  44.  
  45. When printing to a LaserWriter, FWP includes its own PostScript procset.
  46. While it works fine with a real LaserWriter on an AppleTalk network, if
  47. the printing is done through software that is sensitive to Adobe's
  48. document structuring convention (such as the CAP printer software), it
  49. fails.  This is because the procset looks something like this:
  50.  
  51.         %%BeginProcSet (FullWriteProcSet) 1.0 1
  52.         . . .
  53.         %% End of FullWrite ProcSet
  54.  
  55. Not having a matching %%EndProcSet command violates the structuring
  56. conventions.
  57.  
  58. To fix this, go into ResEdit and open (a copy of) FullWrite.  Open
  59. resource PREC, id = 103.  Edit the last line from
  60.  
  61.         %% End of FullWrite ProcSet
  62.  
  63. to
  64.  
  65.         %%EndProcSet for FullWrite
  66.  
  67. (I left a space at the end of the line so that the modified PREC
  68. resource would have the same length.)
  69.  
  70. For even stricter compliance, the last line should be just %%EndProcSet,
  71. and the %%BeginProcSet line should contain a colon after %%BeginProcSet.
  72. --
  73. Edward Moy
  74. Workstation Software Support Group
  75. University of California
  76. Berkeley, CA  94720
  77.  
  78. edmoy@violet.Berkeley.EDU
  79. ucbvax!violet!edmoy
  80.  
  81.  
  82. ------------------------------
  83.  
  84. From: jcc@ut-emx.UUCP (J. Chris Cooley)
  85. Subject: Re: Initialization Page
  86. Date: 19 May 88 20:33:08 GMT
  87. Organization: The University of Texas at Austin, Austin, Texas
  88.  
  89. > I have heard there is a way to keep the LaserWriter (and LW Plus?) from
  90. > printing out its initialization page when you first turn it on.
  91. > I heard this tip was given in Macworld June 87. (Which I don't have access
  92.  
  93. Your sources were correct.  The June 1987 issue of MacWorld details the
  94. way to do it.  Because things were brain damaged back then, they tell
  95. you to hook MacTerminal to the LW and type the postscript code directly
  96. into the device.  That may be well for some, but with the advent of
  97. postscript downloaders, this hassle is rendered obsolete.
  98.  
  99. My favorite is "SendPS 1.21" by Adobe (available on
  100. sumex-aim.stanford.edu in the info-mac directory).  There's also
  101. "Postscript Tool" by Helicon Designs, but it's not as good for
  102. downloading PS code--you have to type the CTRL-D yourself after it ships
  103. the code to the LW.
  104.  
  105. Below are postscript code hacks I did (which were approved by our PS
  106. person here).  Save each of these into text files and ship them to the
  107. laserwriter using a PS downloader.  Don't "Print" from a word processor
  108. unless you change the font to PS Escape (if you have it and have read
  109. its documentation).
  110.  
  111. There's no immediate effect, but the next time you turn the LW on, it
  112. won't be wasting that extra sheet and bit of toner.  The "startuppage
  113. on" file is included in case someone is collecting those sheets for
  114. usage records (or if you want to see the page every now and then).
  115.  
  116.         ------------beginning of "startuppage on" --------------
  117.         %!PS-Adobe-1.0
  118.         serverdict begin 0 exitserver
  119.         statusdict begin true setdostartpage end
  120.         ----------------------end of file-------------------------
  121.  
  122.  
  123.         ------------beginning of "startuppage off" --------------
  124.         %!PS-Adobe-1.0
  125.         serverdict begin 0 exitserver
  126.         statusdict begin false setdostartpage end
  127.         ----------------------end of file-------------------------
  128.  
  129. > thanks,
  130. You're welcome.
  131.  
  132. > Greg Sorensen
  133. --
  134. J. Chris Cooley
  135. Univ. of Texas Comp. Center
  136. Austin, TX  78712
  137. 512/471-3241 x229
  138.  
  139. {im4u,husc6,uunet}!ut-sally!ut-emx!jcc
  140.  
  141.  
  142. ------------------------------
  143.  
  144. From: fiatlux@ucscc.UCSC.EDU (David Vangerov)
  145. Subject: Hooking up an HP 7585B plotter to a Mac
  146. Date: 20 May 88 03:20:19 GMT
  147. Organization: University of California, Santa Cruz; CATS
  148.  
  149. I'm told that this is possible, but I haven't been able to find out how
  150. to do this.
  151.  
  152. We have an HP 7585B plotter (otherwise known as a Big-Bertha plotter) in
  153. the lab that I work. In this same lab we also have a bunch of
  154. micro-computers (IBM's and Mac's). We have had no trouble hooking up the
  155. IBM's to the plotter. What I want to do is hookup the Macs (or at least
  156. one of them, probably the Mac II) to the plotter as well. Now I know
  157. that this can be done since I've seen it be done and heard of it as
  158. well. What I want to know is how do I do this? According to HP they
  159. don't have a generic driver for the plotter and that software you use
  160. should come with a driver for it. So what I really want to know is what
  161. software packages out there support a plotter, specifically the HP
  162. 7585B. I want some software like MacDraw or MacDraft (or something along
  163. those lines).
  164.  
  165. Mail me your replies and I'll summarize for the net if there is enough
  166. interest in this...
  167.  
  168. Thanks a bunch...
  169. --
  170. +----------------------------------------------------------------------------+
  171. |                               David Vangerov                               |
  172. |    Just your average Theater Arts major with a weird thing for computers   |
  173. | fiatlux@ucscc.BITNET || fiatlux@ucscc.ucsc.EDU || ...!ucbvax!ucscc!fiatlux |
  174. +----------------------------------------------------------------------------+
  175.  
  176.  
  177. ------------------------------
  178.  
  179. From: mbk@hpsemc.HP.COM (Miles Kehoe)
  180. Subject: Re: Mac on airplanes
  181. Date: 19 May 88 17:57:07 GMT
  182. Organization: HP Technology Access Center, Cupertino, CA
  183.  
  184. Concerning Macs on airplanes.... (or any other portable) some airports
  185. are beginning to want to see that your computer works before they allow
  186. you thru security. I guess the premise is 'If the thing works, there
  187. can't be a bomb planted in it'. I only meniton this because on a recent
  188. trip, I decided to bring along a Compaq at the last minute and, as
  189. usual, I tossed the power cable into my suitcase which I checked at the
  190. counter. By the time I got to security, I was not able to boot up my
  191. system and prove it to be a computer, so I had to argue with the
  192. security manager and finally open the darn thing up to let him
  193. 'visually' inspect it before I could go thru. So... no matter what... if
  194. you carry it along, bring it's power cable too!
  195.  
  196. (I know... my Mac case has room for everything too.. just wanted to toss
  197. in the caveat, since not many airports have the right tools to open a
  198. mac)
  199.  
  200. Miles
  201.  
  202.  
  203. ------------------------------
  204.  
  205. From: hunt@atse.dec.com (Phil Hunt)
  206. Subject: SE to Mac II floppy - More info
  207. Date: 20 May 88 17:32:45 GMT
  208. Organization: Digital Equipment Corporation
  209.  
  210. I today called an Apple dealer who told me the Apple part number for a
  211. replacement internal Mac II floppy and an external SE floppy (The 'guts'
  212. of the external, the drive itself) are identical!
  213.  
  214. Is there a wire to cut?  A jumper to change? Anything???
  215.  
  216. Why can't you take a MacSE external drive and rehouse it and use it in a
  217. MacII.  It doesn't make sense.  They are the same part number...
  218.  
  219. Argggghhhhh!!!!
  220.  
  221. Any knowledge on this subject or if someone was successful doing this
  222. would be appreciated.
  223. --
  224. Phil Hunt
  225. 603-884-4820
  226.  
  227.  
  228.  
  229. ------------------------------
  230.  
  231. From: dorourke@polyslo.UUCP (David O'Rourke)
  232. Subject: Re: Brief overview of FullWrite (Re
  233. Date: 20 May 88 07:23:49 GMT
  234. Organization: Cal Poly State University -- San Luis Obispo
  235.  
  236. In article <53839@sun.uucp> chuq@sun.UUCP (Chuq Von Rospach) writes:
  237. >I think this is being overly harsh.
  238.  
  239.   I apologize. SORRY.  But to call WYSIWYG a failure was originally a
  240. little harh also.  Anyway I was out of line and I apologize.
  241.  
  242. >hardcore writer who types 100WPM or so. And when I'm writing, I dont' want
  243. > continues with a good argument for why WYSIWYG might not be desirerable.
  244.  
  245.   I have a couple of things to say about that.
  246.  
  247.   1) You're right!  Motorola we need 350 mhz 68060's like NOW!!!!!!!!!!!
  248.  Then
  249.      things might go fast.
  250.  
  251.   2) You also suggested that you be able to turn off the repagination.
  252. Funny
  253.      you should mention that, I sent a *LONG* bug report to Ann Arbor
  254. and also
  255.      suggested that they make the automatic updating optional.  You
  256. think
  257.      a page break is bad, try using an index.  I added a page and it
  258. took
  259.      three min. to "Update the Document", well I have my autosave set
  260. for
  261.      2 min., so FWP would "Update the Document", and it would save,
  262. causing
  263.      it to again "Update the Document", then it would save.  Any
  264. Computer
  265.      Science people recognize this loop?
  266.      You can turn off the re-calculation in a spreadsheet to speed data
  267.      entry, why not a word processor.  If word 4.0 is going to win my
  268.      aproval over FWP, then one of the many things it needs to have is a
  269.      optional auto update feature.
  270.  
  271.   3) If you're **REALLY** interested it just getting the D*MN words in
  272. then
  273.      I suggest that you use a text editor.  I sympathise with your
  274. complaints
  275.      and if I really just want to blaze on the keyboard I use a text
  276. editor
  277.      than does almost NO formatting, then read it into the WP of my
  278. choice.
  279.      Bit of a hack, but it works, and I don't lose my train of thought.
  280.  
  281.   Thankyou for your comments, and again I apologize.
  282.  
  283.  
  284. --
  285. David M. O'Rourke
  286.  
  287. Disclaimer: I don't represent the school.  All opinions are mine!
  288.  
  289.  
  290. ------------------------------
  291.  
  292. From: 6029334@pucc.Princeton.EDU (Robert G. Trevor)
  293. Subject: Re: Statistical Packages
  294. Date: 20 May 88 13:28:57 GMT
  295. Organization: Princeton University, NJ
  296.  
  297. In article <1988May19.182607.21352@gpu.utcs.toronto.edu>,
  298. heath@gpu.utcs.toronto.edu (Todd Heatherton) writes:
  299.  
  300. >
  301. >
  302. >Does anyone know of a powerful statistics program for the Mac, which
  303. >also conforms to the Mac interface.  I know that Statview 512+ is a
  304.  
  305. I have Beta version of RATS for the Macintosh.  Although a little buggy,
  306. especially if you want to use the built in compiler, its a very powerful
  307. and useful package.  They are working hard to remove remaining bugs -
  308. you can get beta now with free upgrade to commercially relaesed version,
  309. or wait for finished version.  Tech support is good (they sent me new
  310. beta when I found bugs in previous version), and the built-in procedures
  311. are very robust. RATS has a good name amongst
  312. economists/econometricians, and is available in mainframe, IBM-PC
  313. versions as well as source licence for M68020 work-station systems.
  314. Main draw-back commercially is the user-interface (it shows its
  315. bloodline);  then that shouldn't worry people who are using high-powered
  316. stats routines anyway. Facilities are mainly for linear models (although
  317. has some non-linear routines and they are adding more);  they include
  318. time series (time and frequency domain), forecasting (static/dynamic,
  319. deterministic/stochastic), multiple regression, 2SLS, 3SLS, SUR, NLLS,
  320. logit, probit, Kalman filter, a (presently buggy) structured programming
  321. language (including matrix language) and much more. (+ BBS for new
  322. procedures) If this sounds like a rave - it is.  I make my living from
  323. using such packages.  RATS is one of the best.  Only GAUSS beats it, but
  324. (SIGH) thats not yet available for the MAC.  (They claim the're about to
  325. hire a programmer to start porting it, and that it will be available in
  326. the Fall - pigs can fly too.) Contact: VAR Econometrics
  327.          PO Box 1818
  328.          Evanston, IL  60204-1818
  329.          Ph:  (312) 864-8772
  330. --
  331. Rob Trevor
  332. MaBell: (609) 452-4051
  333. Bitnet: 6029334@PUCC
  334. UseNet: 6029334@PUCC.Princeton.Edu
  335.  
  336.  
  337. ------------------------------
  338.  
  339. From: wong@alberta.UUCP (Brian Wong)
  340. Subject: tax on mac
  341. Date: 20 May 88 17:20:15 GMT
  342. Organization: U. of Alberta, Edmonton, AB
  343.  
  344. i like to bring a mac to usa (LA to be exact) from canada. when i
  345. return, i might leave the mac to my brother. will the custom tax me? how
  346. much? anybody has opinion / experience on this?
  347.  
  348. brian
  349.  
  350.  
  351. ------------------------------
  352.  
  353. From: mmccann@hubcap.UUCP (Mike McCann)
  354. Subject: How can you extend and add on to AppleTalk networks?
  355. Date: 20 May 88 21:08:12 GMT
  356. Organization: Clemson University, Clemson, SC
  357.  
  358. How can I extend an AppleTalk network so that it is longer than 1000
  359. feet?  I also want to put more than 32 devices on the network, can this
  360. be done?  If you have any suggestions, please send them to me along with
  361. company names, addresses and phone numbers for the hardware I need.
  362.  
  363. Thanks,
  364. --
  365. Mike McCann                        Internet = mmccann@hubcap.clemson.edu
  366. Poole Computer Center (Box P-11)       UUCP = hubcap!mmccann
  367. Clemson University                   Bitnet = mmccann@clemson.bitnet
  368. Clemson, S.C. 29634
  369.  
  370.  
  371. ------------------------------
  372.  
  373. From: sorensen@hstbme.mit.edu (A. Gregory Sorensen)
  374. Subject: TOPS on a Sun
  375. Date: 20 May 88 23:15:52 GMT
  376. Organization: Massachusetts Institute of Technology
  377.  
  378. Another question from the neophyte:
  379.  
  380. Our lab has a MacII next to a Sun4...and we're interested in getting
  381. them to share data in just a crude way -- copying files from one to the
  382. other, sharing a printer -- no heavy duty network database application
  383. or anything.  We figure TOPS would be the logical choice, as Sun makes
  384. it...so...
  385.  
  386. Anyone with *experience* with this stuff?  Is it worth it?  Better
  387. options? Which port on the back of the Sun?  And other relevant answers
  388. would be appreciated.
  389.  
  390. Thanks,
  391.  
  392. Greg Sorensen
  393.  
  394.  
  395. ------------------------------
  396.  
  397. From: thomas@eleazar.dartmouth.edu (Thomas Summerall)
  398. Subject: Apple II Emulation on Mac II
  399. Date: 20 May 88 07:01:17 GMT
  400. Organization: Dartmouth College, Hanover, NH
  401.  
  402. Why hasn't someone written an Apple II or IIgs emulator for the Mac II?
  403. I have seen one for the Mac that was compatible enough with the Apple II
  404. to run Choplifter.  It had two problems: speed, memory,  and lack of
  405. color.  It seems like such an emulator on the Mac II would solve all of
  406. those problems.  This would give Mac II owners access to software like
  407. color games that are so chronically lacking.
  408.  
  409. I was always amazed at the quality of game programs that came out for
  410. the II series considering the limited and obscurely-implemented graphics
  411. that were available before the gs.  It seems that current game software
  412. for the Macs are just scratching the surface of the abilities of the
  413. machines, while the games for the II, like Choplifter or Dino Eggs,
  414. squeezed out every possible effect...Only Dark Castle can compare to
  415. some of the better Apple II games.
  416.  
  417. So, it seems like such an emulation program would make quite a bit of
  418. money if someone were willing to put in the time.  (If only I had the
  419. time and skill...)
  420. --
  421. ==============================================================================
  422.                                  Thomas Summerall
  423.                            H.B. 3445 -- Dartmouth College
  424.                                  Hanover, NH 03755
  425.                             thomas@eleazar.dartmouth.edu
  426. ==============================================================================
  427.  
  428.  
  429. ------------------------------
  430.  
  431. From: korfhage@CS.UCLA.EDU
  432. Subject: Are there any color printer drivers?
  433. Date: 19 May 88 23:38:43 GMT
  434. Organization: UCLA Computer Science Department
  435.  
  436.  
  437.    We would like to print color from our Mac IIs. Are there any device
  438. drivers in existence? Printers of interest are a Calcomp Plotmaster,
  439. Xerox 4020 (or whatever their color printer is numbered), and an Okimate
  440. 20.
  441.    Thanks for any information.
  442.  
  443.    Willard Korfhage
  444.  
  445.    ARPA : korfhage@cs.ucla.edu
  446.    UUCP : {ucbvax,ihnp4,randvax,trwrb!trwspp,ism780}!ucla-cs!korfhage
  447.  
  448.  
  449. ------------------------------
  450.  
  451. From: g451252772ea@deneb.ucdavis.edu (0040;0000009857;0;327;142;)
  452. Subject: Re: Statistical Packages
  453. Date: 21 May 88 02:48:28 GMT
  454. Organization: University of California, Davis
  455.  
  456. The current version of Systat is impressive.  Still only 'user-cordial'
  457. to use Wilkenson's own phrase, but much improved over 2.x (up to 3.1
  458. now).
  459.  
  460. I also use StatView and like its interface much better.
  461.  
  462. Systat is a citable, professional tool.  Yes I've earned a few dollars
  463. reporting bugs (one stat, one trivial) in it, but I liked the rapid
  464. feedback Wilkenson gave.
  465.  
  466. For anova, there's some non-commercial stuff- GANOVA, from UCLA, comes
  467. to mind. The MGLH program in systat is still limited by it's memory
  468. allocation to  small designs when unequal-n repeated measures & such are
  469. set up.  Sigh- the regression approximation used in GANOVA works much
  470. better in those cases.
  471.  
  472. good luck.
  473. --
  474. Ron Goldthwaite / UC Davis, Psychology and Animal Behavior
  475. 'Economics is a branch of ethics, pretending to be a science;
  476.  ethology is a science, pretending relevance to ethics.'
  477.  
  478.  
  479. ------------------------------
  480.  
  481. From: ow@beach.cis.ufl.edu (Olwen Wee)
  482. Subject: Re: tax on mac
  483. Date: 21 May 88 14:35:16 GMT
  484. Organization: UF CIS Department
  485.  
  486. In article <1313@pembina.UUCP> wong@alberta.UUCP (Brian Wong) writes:
  487. >i like to bring a mac to usa (LA to be exact) from canada.
  488. >when i return, i might leave the mac to my brother.
  489. >will the custom tax me?
  490.  
  491. I have brought a mac from Singapore, and there was no problem, basically
  492. because the mac is made in the US.  If you had brought in an apple, it
  493. would be a different case. -- Olwen Wee
  494.  
  495.  
  496. ------------------------------
  497.  
  498. From: drc@dbase.UUCP (Dennis Cohen)
  499. Subject: Re: Math Word Processing
  500. Date: 20 May 88 17:57:52 GMT
  501. Organization: Ashton Tate Development Center Glendale Cal.
  502.  
  503. In article <380@thunder.UUCP>, raday@thunder.UUCP (Alan Day) writes:
  504. >       (1) multiple (adjustable?) levels of sub- and super-scripts. The
  505. > adjustment might be necessary if the default settings are not
  506. > correct as in Word. (Anyone know how to FEdit these values for
  507. > Word? The workarounds that I know are very time consuming and
  508. > unnatural.)
  509. FullWrite already seems to provide this capability by allowing you to
  510. raise or lower selected text in 1 pixel increments.  While this probably
  511. doesn't satisfy the request in all its generality, it would seem that it
  512. answers the majority of those requests.
  513.  
  514. >
  515. >       (2) Intuitive CHARACTER overstrike capability (LaserAuthor used
  516. > COMMAND-backspace between the characters). This would allow writing
  517. > e.g. NOT less than, and x sub i super j in paragraph text easily.
  518. While a more intuitive approach is definitely needed, the same result
  519. can be achieved in FullWrite by using the kerning control that is
  520. provided.  While the more common case needs a better metaphor, this does
  521. provide extra flexibility.
  522.  
  523. >
  524. >       (3) a general wish would be macros and command-key assignment
  525. > (which means the programme must not gobble up all possible
  526. > assignments for obscure power user capabilities. Are you listening
  527. > Word?)
  528. I use QuicKeys for this sort of thing and never actually desired much in
  529. the way of macros beyond what it provides.  Since QK overrides the
  530. program's use, it is seldom a problem.
  531. >
  532. > Does anyone know of a WP package with these minor :-) abilities?
  533. >
  534.  
  535. As you see from the above, FullWrite Professional does a pretty fair job
  536. of meeting your requests (although it is not necessarily obvious that
  537. the capa- bility is present) and the addition of QuicKeys makes it a
  538. very well-rounded environment.
  539. --
  540. Dennis Cohen
  541. Ashton-Tate Macintosh Division
  542. dBASE Mac Development Team
  543. --------------------------
  544. Disclaimer:  Opinions expressed above are those of the author.
  545.  
  546.  
  547. ------------------------------
  548.  
  549. From: dorourke@polyslo.UUCP (David O'Rourke)
  550. Subject: Re: REsolved: "There is nothing to choose" trouble
  551. Date: 21 May 88 07:52:38 GMT
  552. Organization: Cal Poly State University -- San Luis Obispo
  553.  
  554. In article <440011@hpdstma.HP.COM> dave@hpdstma.HP.COM (Dave Waller)
  555. writes:
  556. >There should be a file in your system folder similar to the notepad file that
  557. >contains information about what you have chosen with the chooser. This is why
  558. >replacing all the laserwriter stuff and the system and finder doesn't seem
  559. >to help-- the file that contains chooser specific stuff is still there! If
  560. >you blow this file away, things should be alright. Note also that this file
  561. >may be invisible, so you will need ResEdit or something like that to
  562. >manipulate it.
  563.  
  564.   Well Apple's Documenation was no help what so ever in this case.  I
  565. had to look it up in "Macintosh Programming Secrets" by Scott Knaster.
  566. The chooser does not manipulate a file, but it changes a resource in the
  567. system file. 'STR ' -8192 will contain the name of the currently
  568. selected printer.  After retrieving that name from the string you can
  569. then open the file of the same name and rumage around inside it to find
  570. out additional information about the printer.  Mr. Knaster gives a very
  571. good description of how to do this and I recommend the book highly.
  572.   The nothing to choose problem might result if the choose is smart
  573. enough to look and see if the system file is locked, hence not allowing
  574. any modifications to be made.  Since it has to store the current printer
  575. name in the system file, if it is locked it can't do this, so it might
  576. give up with the error message you saw.
  577.   Hope this helps!!!
  578.  
  579. --
  580. David M. O'Rourke
  581.  
  582. Disclaimer: I don't represent the school.  All opinions are mine!
  583.  
  584.  
  585. ------------------------------
  586.  
  587. From: dorourke@polyslo.UUCP (David O'Rourke)
  588. Subject: Re: How can you extend and add on to AppleTalk networks?
  589. Date: 21 May 88 09:29:01 GMT
  590. Organization: Cal Poly State University -- San Luis Obispo
  591.  
  592. In article <1677@hubcap.UUCP> mmccann@hubcap.UUCP (Mike McCann) writes:
  593. >How can I extend an AppleTalk network so that it is longer than 1000
  594. >feet?
  595.  
  596.     I have not used it.  But I've heard good things about the Tops
  597. repeater from Tops.  It boosts the signal so that it can travel farther.
  598.  {Anybody who  has a better description is welcome to clean up my
  599. description}.  I don't know cost, or distribution, but I do remember
  600. some net mail about it 6 months ago.  Seems everyone liked it pretty
  601. well.
  602.     The other option is switching to phone net connector and standard
  603. telephone wire.  They claim 3000 feet before needing a repeater.
  604.  
  605. >I also want to put more than 32 devices on the network, can this
  606. >be done?
  607.  
  608.     Yes and No.  It is possible to put more than 32 nodes on an
  609. Appletalk network, but due to the limited bandwidth and the way
  610. Appletalk works the performance starts degrading significantly after
  611. that point {I've found this to be true after only 20}.  But Apple Does
  612. have a solution.  Appletalk supports Zones, this allows you to break up
  613. your network into "sections" of smaller sub networks, they can still
  614. commuicate with each other, but each zone's local traffic doesn't
  615. interfere with other zones local traffic.  Shiva and Hayes both make an
  616. AppleTalk bridge which is what's required to do this.  I also seem to
  617. remember Tops offering a bridge also, but I'm not as sure as I am about
  618. Shiva and Hayes.
  619.      Breaking Large AppleTalk networks into zones makes good
  620. administrative sence, support easier, and increases the local
  621. performance of both networks. I would look into setting up Zones, rather
  622. than triing to make one large network.  It also makes it easier to add
  623. nodes in the future because each  zone has the full number of nodes
  624. possible, and you can have Lots of different zones if you're willing to
  625. shell out the bucks for the bridges.  AppleTalk allows 2^16 zones, I
  626. doubt anyone would really want to test that limit, but you get the idea,
  627. 4 or 5 zones wouldn't be that hard to come up with, and Appletalk can
  628. definatly handle it.
  629.      Hope this helps, any questions can be sent to me directly, or via
  630. net news.
  631.  
  632. --
  633. David M. O'Rourke
  634.  
  635. Disclaimer: I don't represent the school.  All opinions are mine!
  636.  
  637.  
  638. ------------------------------
  639.  
  640. From: chow@batcomputer.tn.cornell.edu (Christopher Chow)
  641. Subject: Re: REsolved: "There is nothing to choose" trouble
  642. Date: 21 May 88 20:09:50 GMT
  643. Organization: Cornell Theory Center, Cornell University, Ithaca NY
  644.  
  645. In article <2780@polyslo.UUCP> dorourke@polyslo.UUCP (David O'Rourke)
  646. writes:
  647.  
  648. >The chooser
  649. >does not manipulate a file, but it changes a resource in the system file.
  650. >'STR ' -8192 will contain the name of the currently selected printer.  After
  651.  
  652.  
  653. I hope this feature is fixed in a later system distribution:  Having the
  654. choose change the system file is bad -- if you choose a different
  655. printer then the system file is has been modified, which means that the
  656. next time you do a hard disk backup the system file needs to be backed
  657. up.  A stripped down system is still a big file!
  658.  
  659. Christopher Chow
  660. --
  661. /---------------------------------------------------------------------------\
  662. | Internet:  chow@tcgould.tn.cornell.edu (128.84.248.35 or 128.84.253.35)   |
  663. | Usenet:    ...{uw-beaver|ihnp4|decvax|vax135}!cornell!batcomputer!chow    |
  664. | Bitnet:    chow@crnlthry.bitnet                                           |
  665. | Phone:     1-607-253-6699   Address: 7122 N. Campus 7, Ithaca, NY 14853   |
  666. | Delphi:    chow2            PAN:  chow                                    |
  667. \---------------------------------------------------------------------------/
  668.  
  669.  
  670. ------------------------------
  671.  
  672. From: gelphman@adobe.COM (David Gelphman)
  673. Subject: Re: New LAYO
  674. Date: 21 May 88 21:29:42 GMT
  675. Organization: Adobe Systems Incorporated, Mountain View
  676.  
  677. In article <6591@cit-vax.Caltech.Edu> wetter@tybalt.caltech.edu.UUCP
  678. (Pierce T. Wetter) writes:
  679. >
  680. ...
  681. >change it by hand. SURPRISE, there's some new bits/fields. For instance,
  682. >there's now, sort style, color style, and max # of windows. What gives?
  683. >   What do the new fields do?
  684. >Pierce WEtter
  685. >
  686. >P.S. I really need to know this, especially color style as all of my icons have
  687.  
  688. >changed to solid black.
  689.  
  690.      I played around with ResEdit 1.2d1 which shows you the extra bits
  691. in the LAYO resource of the Finder. I found that there is a new bit
  692. which is labelled 'Title Click'. It is set to 0 by default. If you set
  693. it to 1, then you can double click in the title bar of any FINDER window
  694. and the folder directly above it in the disk hierarchy will be opened
  695. and brought to the front. If that folder is already open, its window
  696. will be brought to the front.
  697.    The Max # of windows evidently allows you to up the maximum number of
  698. windows the finder will allow you to have open at once. (seems obvious)
  699.     As far as Color Style, I haven't played much with that but did find
  700. that setting it to 1 (default is zero) made all the folders and icons
  701. black.
  702.     The extra bits are labelled: Use Phys Icon Title Click Copy Inherit
  703. New Fold Inherit
  704.  
  705. Ideas as to the rest of these?
  706. --
  707. David Gelphman
  708. Adobe Systems, Inc.
  709.  
  710.  
  711. ------------------------------
  712.  
  713. From: tomc@mntgfx.mentor.com (Tom Carstensen)
  714. Subject: Speed of Redraw in Drawing programs
  715. Date: 19 May 88 20:06:01 GMT
  716. Organization: Mentor Graphics Corporation, Beaverton Oregon
  717.  
  718. Well, I've had a chance to test most of the commercially available
  719. drawing software programs for the Mac, to see if any are better for
  720. drawing electronic schematics than MacDraw.  Basically, NO.
  721.  
  722. MacDraw far out runs the other drawing program I test in terms of speed
  723. of redrawing a drawing.  With schematics, and the like, there are
  724. usually thousands of objects to draw.  MacDraw is somewhat slow at
  725. redrawing them, but all of the other drawing programs are slower.
  726. Here's my summary:
  727.  
  728.     Aldus FreeHand      Great drawing program, still slower
  729.     Canvas              VERY VERY VERY Slow !!!
  730.     Cricket Draw        Decent drawing program, but somewhat
  731.                         slower on the redraw
  732.     SuperPaint          It was slower, and not really suited
  733.                         to drawing schematic diagrams
  734.  
  735. If MacDraw beats all of these in speed, and MacDraw II it supposed to be
  736. many, many times faster the MacDraw, it looks like MacDraw II could be
  737. an awesome program!
  738.  
  739. MacDraw, which has been around from the beginning, still outruns the
  740. latest and greatest drawing programs in speed !!
  741. --
  742. :------------------------------------------------------------:
  743. : Tom Carstensen         Usenet: tomc@mntgfx.MENTOR.COM      :
  744. : Mentor Graphics                Delphi: CARSTENSEN          :
  745. :                                GEnie:  CARSTENSEN          :
  746. :                                                            :
  747. :     . . . Ah, what I wouldn't give to be spat at in the    :
  748. :           face.  I used to lay awake at night dreaming of  :
  749. :           being spat at in the face.                       :
  750. :                             - Monty Python (Life of Brian) :
  751. :------------------------------------------------------------:
  752.  
  753.  
  754. ------------------------------
  755.  
  756. From: rterry@hpcupt1.HP.COM (Ray Terry)
  757. Subject: SuperMac XP150 drive ??
  758. Date: 22 May 88 01:41:47 GMT
  759. Organization: Hewlett Packard, Cupertino
  760.  
  761.  
  762. Does anyone out there has signficant experience with (therefore a
  763. reaction to the new(er) SuperMac XP150 (external hard disk drive)).  I
  764. hear that it is good, fast, but expensive.
  765.  
  766. I'd be interested in hearing from anyone with that can tell me about
  767. their actual experience in using the drive...  I'm currently using the
  768. old DataFrame 20 and the newer XP60 (on a Mac Plus w/2.5 meg) had have
  769. found both to be  pretty solid with only fair support from SuperMac.
  770.  
  771. Any and all comments are welcome.  As usually, I summarize and post a
  772. reply at a later date.
  773.  
  774. Thanks.
  775. --
  776. Ray Terry
  777. rterry%hpda@hplabs.hp.com
  778.  
  779.  
  780. ------------------------------
  781.  
  782. From: alan@Apple.COM (Alan Mimms)
  783. Subject: Re: New LAYO
  784. Date: 22 May 88 20:07:52 GMT
  785. Organization: Apple Computer Inc, Cupertino, CA
  786.  
  787. In fiddling around, I discovered that the "Use Phys Icon" bit makes the
  788. icon for the floppies on SEs be a picture of an SE with an arrow
  789. pointing to the drive floppy is mounted in.
  790.  
  791. I haven't tried asking the folks who wrote the code.  (Perhaps someone
  792. in Apple would do so and post the results?)  Consequently, I am not an
  793. authority to be trusted.  This information is NOT coming from Apple
  794. Computer, it's coming from ME.  (Is that enough disclaimer?)
  795.  
  796. alan
  797.  
  798. --
  799. Alan Mimms                      My opinions are generally
  800. Communications Products Group   pretty worthless, but
  801. Apple Computer                  they *are* my own...
  802. ...it's so simple that only a child can do it!  -- Tom Lehrer, "New Math"
  803.  
  804.  
  805. ------------------------------
  806.  
  807. From: clive@drutx.ATT.COM (Clive Steward)
  808. Subject: Re: Mac on airplanes
  809. Date: 13 May 88 01:42:49 GMT
  810. Organization: resident visitor
  811.  
  812. >From article <884@bucket.UUCP>, by martyl@bucket.UUCP:
  813. >
  814. > The Mac will fit with plenty of room under the seats of an L-1011 as there
  815. > really isn't an overhead bin.  TWA didn't even flinch when I brought it on.
  816. >
  817.  
  818. Don't know that this is such a good idea.
  819.  
  820. Last night I read an article in .risks about a newly common injury on
  821. airplanes -- descriptions of victims concussed to the point of partial
  822. one-side paralysis, etc., from being hit by portable computers dropping
  823. out of the overhead bins.
  824.  
  825. I'm sure that even before the article, I wouldn't want to sit under one.
  826.  
  827.  
  828. Clive Steward
  829.  
  830.  
  831. ------------------------------
  832.  
  833. From: roy@phri.UUCP (Roy Smith)
  834. Subject: Getting means and standard deviations out of CricketGraph
  835. Date: 22 May 88 20:36:05 GMT
  836. Organization: Public Health Research Institute, NYC, NY
  837.  
  838.  
  839.         Does anybody know how to get mean and standard deviation from
  840. CrickGraph?  You can do Z-scores which CricketGraph defines as (X -
  841. Mean) / Standard_Deviation; it obviously calculates the mean and s.d.
  842. but the damn program won't let you see them!
  843.  
  844.         What I really want to do is this:  I've got some data sets with several
  845. observations of Y for each X.  I'd like to take the data in the first 4
  846. columns below and generate (as opposed to calculating myself and
  847. entering) the last 2 columns, then do a line plot of X vs. Yavg using
  848. sd-Y for Y error bars.
  849.  
  850.         X       Y1      Y2      Y3      Yavg    sd-Y
  851.  
  852.         1       10      10      12      10.67   1.155
  853.         2       20      25      22      22.33   2.517
  854.         3       31      32      30      31.00   1.000
  855.  
  856.         A similarly useful thing to do would be to get the range of the Ys and
  857. use that for the error bars.  Should I break down and admit that this is
  858. out of CricketGraph's league and get a real spreadsheet?  Another useful
  859. thing would be to have non-symmetric error bars (as in "IBM closed at
  860. 14-1/2 with a high of 14-7/8 and a low of 14-3/8").  Any way to make
  861. CricketGraph do that?
  862. --
  863. Roy Smith, System Administrator
  864. Public Health Research Institute
  865. 455 First Avenue, New York, NY 10016
  866. {allegra,philabs,cmcl2,rutgers}!phri!roy -or- phri!roy@uunet.uu.net
  867.  
  868.  
  869. ------------------------------
  870.  
  871. From: kaufman@polya.Stanford.EDU (Marc T. Kaufman)
  872. Subject: Re: SuperMac XP150 drive ??
  873. Date: 23 May 88 04:22:07 GMT
  874. Organization: Stanford University
  875.  
  876. In article <6150020@hpcupt1.HP.COM> rterry@hpcupt1.HP.COM (Ray Terry)
  877. writes:
  878.  
  879. >Does anyone out there has signficant experience with (therefore a reaction
  880. >to the new(er) SuperMac XP150 (external hard disk drive)).  I hear that it
  881. >is good, fast, but expensive.
  882.  
  883. Yes, and yes, and yes.  There are only two problems with it in my
  884. application: 1) it comes up too slowly, so that if there is also an
  885. internal disk, the internal always gets recognized (if you strap the AC
  886. power to a single switch). Thus, I have to turn it on first, and give it
  887. 15-20 seconds to spin up before I boot the Mac.
  888.  
  889. 2) It's boot sector cannot handle A/UX partitions... so that you can't
  890. run it in partitioned mode with both A/UX and Mac OS [they are working
  891. on a fix for this one].
  892.  
  893. Marc Kaufman (kaufman@polya.stanford.edu)
  894.  
  895.  
  896. ------------------------------
  897.  
  898. From: stew@endor.harvard.edu (Stew Rubenstein)
  899. Subject: Re: How can you extend and add on to AppleTalk networks?
  900. Date: 23 May 88 06:05:51 GMT
  901. Organization: Aiken Computation Lab Harvard, Cambridge, MA
  902.  
  903. Farallon's PhoneNet can be up to 4000 feet of 22 gauge twisted pair. You
  904. can go longer by installing a Repeater or StarController.  Both are
  905. available from Farallon.  I believe you'll still be limited to 32
  906. devices per network.  Farallon Computing Inc., 2150 Kittredge, Berkeley,
  907. CA  94704   415-849-2331.
  908. --
  909. Stew Rubenstein
  910. Cambridge Scientific Computing, Inc.
  911. UUCPnet:    seismo!harvard!rubenstein            CompuServe: 76525,421
  912. Internet:   rubenstein@harvard.harvard.edu       MCIMail:    CSC
  913.  
  914.  
  915. ------------------------------
  916.  
  917. From: gz@spt.entity.com (Gail Zacharias)
  918. Subject: Re: Anyone using pcl (clos) under Allegro Common Lisp?
  919. Date: 19 May 88 21:41:56 GMT
  920. Organization: A Kindof Entity, Cambridge, MA
  921.  
  922. In article <3978@zodiac.UUCP> mcconnel@ads.com (Chris McConnell) writes:
  923. >PCL is fairly portable.  I plan to bring it up in Allegro in the next
  924. >month.  If you accept the most generic implementation, it should
  925. >already run in Allegro.  (In fact, it may even have optimizations
  926. >already since Allegro is really Franz and it already runs in Franz.)
  927.  
  928. First, let me clear up something here.  I believe the original question
  929. was about Allegro CL for the Mac (which is really Coral Common Lisp) not
  930. about Allegro CL for Unix (which is really Franz Extended Common Lisp).
  931. Franz conditionalizations would certainly not work in Coral or vice
  932. versa.  The two implementations have nothing in common aside from the
  933. name they're being marketed under, and some marketing person deserves an
  934. eternity in hell for causing this confusion.
  935.  
  936. Secondly, PCL has already been brought up under Coral Common Lisp, with
  937. all the usual optimizations that PCL allows for.  See the "coral-low"
  938. file that comes with PCL.
  939.  
  940. Finally, regarding the original question - Object Lisp in CCL is not
  941. very efficient as native object systems go, but it IS a native
  942. implementation and is faster than PCL.  So you won't speed up your code
  943. in the short term by going to PCL.  However, in the longer term, Coral
  944. will provide a native implementation of CLOS, which should be more
  945. efficient than Object Lisp (and in any case, Object Lisp will get even
  946. less efficient since we'll probably re-implement it as a compatibility
  947. package on top of CLOS).  So whether you decide to switch now depends on
  948. the relative importance of short-term vs long-term to you...  One
  949. possibility is to stay with Object Lisp but adapt a coding style which
  950. doesn't take advantage of its special features, so as to make future
  951. conversion easier (e.g. maintain a strict distinction between classes
  952. and instances, don't create new instance variables on the fly, etc.).
  953.  
  954. -- gz@entity.com                                              ...!mit-eddie!gz
  955.             Now let's all repeat the non-conformist oath.
  956.  
  957.  
  958. ------------------------------
  959.  
  960. From: newbery@rata.vuw.ac.nz (Michael Newbery)
  961. Subject: MPW has trouble with L O N G lines
  962. Date: 18 May 88 21:00:22 GMT
  963. Organization: Computing Serv. Ctr, Victoria Uni., Wellington, New Zealand
  964.  
  965. I imagine a few of you have discovered this but I just thought I'd raise
  966. it in case Apple feels like fixing it.
  967.  
  968. MPW does not like very long lines. As example, try editing a
  969. Postscript<n> file created by Clover-F when that file has an Adobe
  970. downloaded font. MPW tries to display a line several kB long and a LONG
  971. pause ensues. It doesn't crash, it just takes time.
  972.  
  973.  
  974. ------------------------------
  975.  
  976. From: jwhitnell@cup.portal.com
  977. Subject: LightspeedC license
  978. Date: 19 May 88 19:48:38 GMT
  979. Organization: The Portal System (TM)
  980.  
  981. Came across this on Compuserve and I thought I'd pass it on.
  982.  
  983.         #: 9641 S6/Lightspeed C
  984.         19-May-88  06:57:44
  985.         Sb: #9639-Copyright notice
  986.         Fm: Stephen Z. Stein 71500,3326
  987.         To: Gary Kato 76074,1020
  988.  
  989. Gary -
  990.    Our license agreement requires the citation of THINK Technologies'
  991. copyright if you use any library code for which we provide source. (This
  992. means the C libraries: stdio, unix, storage, etc. and ONLY those
  993. libraries.  You need not cite our copyright for using MacTraps.)  We
  994. feel this is necessary to protect our rights to that source code in the
  995. event that a software author might publish a product that incorporated
  996. the library code without protecting her or his copyright (for instance,
  997. in a "freeware" type of product).  We do not wish the library code to
  998. become "public domain".
  999.    Because of this,  we will amend this section of the licensing
  1000. agreement for software authors that agree to copyright their work and
  1001. defend that copyright if it is challenged.  In this case, we will not
  1002. require a notice in the about box or on the disk label - only a notice
  1003. in the manual, if there is a manual.
  1004.    We have a form for this agreement.  To obtain the form, please write
  1005. to:
  1006.    LSC License Agreement Waiver
  1007.    Symantec Corp. THINK Technologies Div.
  1008.    135 South Road
  1009.    Bedford, MA 01730
  1010.  
  1011. - Steve Stein, Symantec/THINK
  1012. --
  1013. Jerry Whitnell
  1014. jwhitnell@cup.portal.com
  1015. ...!sun!cup.portal.com!jwhitnell
  1016.  
  1017. ------------------------------
  1018.  
  1019. End of Usenet Mac Digest
  1020. ************************
  1021.  
  1022. ACTION> bye
  1023. NAKMAN off at 18-JUN-1988 17:08:55
  1024. Session time: 115 minutes.
  1025.  
  1026.  
  1027. Thanks for using DELPHI!
  1028.  
  1029.  
  1030.  
  1031. network: call cleared by request
  1032.